• File: logout.php
  • Full Path: C:/htdocs/reeft_gps_test/REEFTintegrationLog/logout.php
  • Date Modified: 04/30/2025 7:56 AM
  • File size: 1.1 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

//======================================================================================
// DATAHUB - Logout
//
// Programmer: JKJ
// Date      : 2025-05-27
//
// Copyright Reeft A/S (c) - 2025
//======================================================================================

//======================================================================================
// General config
//======================================================================================
	include "config/config.php";
	include "include/REEFT_date_convert.php";


//======================================================================================
// Get session variables
//======================================================================================
	include "include/getsession.php";

//======================================================================================
// It's the end of the world...
//======================================================================================

	session_start();
	session_destroy();
	header("Location: login.php");
	exit;

?>